English
bindec() function converts binary to decimal.
bindec()
<?php echo bindec ( "0011" ) ; echo bindec ( "01" ) ; echo bindec ( "11000110011" ) ; echo bindec ( "111" ) ; ?>
Try it yourself